Anillo 3 - Original

An interactive fiction by Mel Hython (2009) - the Inform 7 source text

Home page

Contents
Previous
Next

Complete text
Chapter 10 - Junto al Icalante

Section 1 - Grilletes

Some grilletes are a thing. The description of grilletes is "Unos grilletes de viejo hierro-dragón, oxidados pero extremadamente resistentes. Sólo la llave correcta, la magia o alguien fuerte como un dragón podría abrirlos.".

[Abrir grilletes, sinónimos]
Instead of unlocking grilletes with llave:
    try opening grilletes.

Instead of unlocking grilletes with aguja:
    try opening grilletes.

Instead of dropping icalante when the grilletes is visible:
    try opening grilletes.

Instead of taking or opening grilletes:
    let icalibre be 0;
    if llave is not carried and aguja is not carried:
        say "Intentas abrir los grilletes por la fuerza y liberar así al icalante, pero resulta imposible.";
    otherwise if llave is not carried:
        say "Uhm... tal vez con la aguja se pueda abrir... veamos...";
        bnw;
        if a random chance of 15 in 100 succeeds:
            say "¡Sí! ¡Los grilletes ceden ante la aguja!";
            move grilletes to the location;
            now icalibre is 1;
        otherwise:
            say "¡Oh, no! La aguja no era tan resistente como parecía y ha quedado inservible.";
            remove aguja from play;
    otherwise:
        say "Veamos si esta es la llave que abre los grilletes...";
        bnw;
        say "...pues sí, ha habido suerte.";
        now icalibre is 1;
    if icalibre is 1:
        bnw;
        say "El icalante parece muy, pero que muy agradecido con tu portador.";
        now icalante is siguiendote;
        activate icalante;
        remove grilletes from play.

Instead of putting polvora on grilletes:
    say "Si pones un poco de este polvo negro en los grilletes y... uhm... no";
    bnw;
    say "...eso no funcionaría, el acero-dragón puede resistir el fuego de un dragón, una explosión de este polvo no le haría ni calentarse.".

Instead of inserting polvora into grilletes:
    try putting polvora on grilletes.